home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Magazine / SoundLab / Studio16add / scripts / UpsampleStudio < prev   
Encoding:
AmigaDOS Script File  |  1997-11-12  |  740 b   |  31 lines

  1. .key PATTERN/A,DESTDIR/A
  2. .bra {
  3. .ket }
  4.  
  5. ; This script can upsample many Studio 16 files based
  6. ; on pattern matching.
  7. ;
  8. ; $VER: UpsampleStudio 1.0 (12.11.97)
  9. ; By Kenneth "Kenny" Nilsen (kenny@bgnett.no)
  10. ;
  11. ; USAGE: UpsampleStudio <pattern> <destdir/>
  12. ;
  13. ; NOTE: The commands must be in the command search path. To be safe
  14. ; copy the commands in C: or add the path where you keep the commands to
  15. ; the global search path (startup-sequence: path <path> ADD).
  16.  
  17. ;-- convert files
  18.  
  19. list {pattern} files lformat="echo *"Processing file '%N'...*"*nS16UpSample %P%N {DESTDIR}%N.us -i" >t:tmp.16
  20.  
  21. echo "Upsampling Studio 16 file(s).. please wait!"
  22.  
  23. execute t:tmp.16
  24. if WARN
  25.     echo "Error occured while upsampling files!"
  26.     endif
  27.  
  28. echo "Done"
  29.  
  30. lab Final
  31.